time.Time.unixSec (method)
13 uses
time (current package)
format.go#L1364: name, offset, _, _, _ := local.lookup(t.unixSec())
format.go#L1380: offset, ok := local.lookupName(zoneName, t.unixSec())
format_rfc3339.go#L146: if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
time.go#L178: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
time.go#L467: sec := t.unixSec()
time.go#L487: sec := t.unixSec()
time.go#L1164: name, offset, _, _, _ = t.loc.lookup(t.unixSec())
time.go#L1174: _, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
time.go#L1193: return t.unixSec()
time.go#L1202: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1211: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1221: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1316: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |